Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@seedcss/seed-dash

Package Overview
Dependencies
Maintainers
3
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@seedcss/seed-dash

Config utility pack for Seed

  • 0.0.6
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
58
increased by1.75%
Maintainers
3
Weekly downloads
 
Created
Source

seed-dash Build Status npm version Dependency Status

Config utility pack for Seed!

seed-dash uses Underscore/lodash-like methods such as _get, _set, and _extend to make it easier to adjust configuration variables (especifically lists and maps).

If you're looking for a much more complete Underscore/lodash-like experience for Sass, we highly recommend checking out Sass Dash instead!

Install

npm install @seedcss/seed-dash --save

Documentation

Check out our documentation of this pack.

Basic Usage

SCSS

This seed pack needs to be imported into your sass pipeline. Below is an example using Gulp:

var gulp = require('gulp');
var sass = require('gulp-sass');
var pack = require('seed-dash');

gulp.task('sass', function () {
  return gulp.src('./sass/**/*.scss')
    .pipe(sass({
      includePaths: pack
    }))
    .pipe(gulp.dest('./css'));
});

Once that is setup, simply @import seed-dash as needed in your .scss file:

// Packs
@import "pack/seed-dash/_index";

Keywords

FAQs

Package last updated on 30 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc